-
Notifications
You must be signed in to change notification settings - Fork 70
Release 12.0 #1110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Release 12.0 #1110
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With recent official PHP docker images the Zend OPCache extension is loaded by default. This is causing some test failures as PHP will output a warning message when the `integration_runner` attempts to load this extension. As a result any `EXPECT` statements in tests will fail due to this extra output. The solution chosen was to use the “-m” option for the `php` and `php-cgi` binaries to probe if the Zend OPCache module is loaded by default in the PHP environment. Both binaries are used in testing so the defaults of both are considered. The value of the integration_runner command line option `opcache_off` is also noted. When a test is going to be run this information is used to determine if the `zend_extension=opcache.so` is needed as well as setting the values of `opcache.enable` and `opcache.enable_cli`. These INI values needed special handling because it is possible these are overwritten by values in the INI stanza of a given test case. Also consideration is needed to if the `PHPMODULES` stanza exists in the test case and specifies loading the `opcache.so` module. --------- Co-authored-by: Michal Nowacki <[email protected]>
When Composer runtime API is used to get packages information, the agent should not generate packages information using legacy methods. This solves the problem of package data detected with the help of Composer's runtime API not to be sent to the backend in environments using “once-per-process” setting. The reason for is that the first request generates package information using Composer's runtime API but every next request only generates package information using legacy method. This in conjunction with the fact that daemon is only sending the last package information received from the daemon leads to a situation that package information returned by Composer runtime API is lost and never makes it to the backend.
|
bduranleau-nr
approved these changes
Aug 8, 2025
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1110 +/- ##
==========================================
+ Coverage 77.27% 78.12% +0.84%
==========================================
Files 199 193 -6
Lines 28342 27989 -353
==========================================
- Hits 21902 21866 -36
+ Misses 6440 6123 -317
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.